home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Cross Platform / QuickTime 4.1.2 Windows SDK / CIncludes / CoreFoundation / CFTimeZone.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-12  |  1.5 KB  |  91 lines  |  [TEXT/R*ch]

  1. /*
  2.      File:        CFTimeZone.h
  3.  
  4.      Contains:    CoreFoundation time zone
  5.  
  6.      Version:    Technology:    Mac OS X
  7.                  Release:    QuickTime 4.1
  8.  
  9.      Copyright:    (c) 1999 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. #ifndef __COREFOUNDATION_CFTIMEZONE__
  18. #define __COREFOUNDATION_CFTIMEZONE__
  19.  
  20. #ifndef __COREFOUNDATION_CFBASE__
  21.     #include <CoreFoundation\CFBase.h>
  22. #endif
  23.  
  24. #ifndef __COREFOUNDATION_CFARRAY__
  25.     #include <CoreFoundation\CFArray.h>
  26. #endif
  27.  
  28. #ifndef __COREFOUNDATION_CFDATA__
  29.     #include <CoreFoundation\CFData.h>
  30. #endif
  31.  
  32. #ifndef __COREFOUNDATION_CFDATE__
  33.     #include <CoreFoundation\CFDate.h>
  34. #endif
  35.  
  36. #ifndef __COREFOUNDATION_CFDICTIONARY__
  37.     #include <CoreFoundation\CFDictionary.h>
  38. #endif
  39.  
  40. #ifndef __COREFOUNDATION_CFSTRING__
  41.     #include <CoreFoundation\CFString.h>
  42. #endif
  43.  
  44.  
  45.  
  46.  
  47. #if PRAGMA_ONCE
  48. #pragma once
  49. #endif
  50.  
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54.  
  55. #if PRAGMA_IMPORT
  56. #pragma import on
  57. #endif
  58.  
  59. #if PRAGMA_STRUCT_ALIGN
  60.     #pragma options align=mac68k
  61. #elif PRAGMA_STRUCT_PACKPUSH
  62.     #pragma pack(push, 2)
  63. #elif PRAGMA_STRUCT_PACK
  64.     #pragma pack(2)
  65. #endif
  66.  
  67. /*
  68.     CFTimeZoneRef is defined in CFDate.h
  69. */
  70.  
  71. #if PRAGMA_STRUCT_ALIGN
  72.     #pragma options align=reset
  73. #elif PRAGMA_STRUCT_PACKPUSH
  74.     #pragma pack(pop)
  75. #elif PRAGMA_STRUCT_PACK
  76.     #pragma pack()
  77. #endif
  78.  
  79. #ifdef PRAGMA_IMPORT_OFF
  80. #pragma import off
  81. #elif PRAGMA_IMPORT
  82. #pragma import reset
  83. #endif
  84.  
  85. #ifdef __cplusplus
  86. }
  87. #endif
  88.  
  89. #endif /* __COREFOUNDATION_CFTIMEZONE__ */
  90.  
  91.